home *** CD-ROM | disk | FTP | other *** search
- { *****************************************************************************
- Implementing COM Component Callbacks in Delphi
- Code written for Delphi Informant publication
-
- Comments, questions, suggestions?
- Binh Ly, Systems Analyst (bly@brickhouse.com)
- Brickhouse Data Systems (http://www.brickhouse.com)
- *****************************************************************************
- }
- program ChatClient;
-
- uses
- Forms,
- MainFrm in 'MainFrm.pas' {frmMain},
- ChatEvent in 'ChatEvent.pas',
- ChatServer_TLB in '..\Server\ChatServer_TLB.pas';
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TfrmMain, frmMain);
- Application.Run;
- end.
-